home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
AI88PATT
/
GETSTRNG.C
< prev
next >
Wrap
Text File
|
1990-01-07
|
342b
|
13 lines
void getstrng(prompt,Default,response,buffer)
/* prompt for a string to store in response, print Default */
char *prompt, *Default, *response, *buffer;
{
printf("%s [%s] ",prompt,Default);
gets(buffer);
/* if(!strncmp(buffer,NULL,1))*/
if(!strcmp(buffer,"\0"))
strcpy(response,Default);
else
strcpy(response,buffer);
}